Created: 2022-08-19
Tags: #fleeting
\a alert (bell) character
\b backspace
\f formfeed
\v vertical tab
\000 octal number -> '\013' means vertical tab in ASCII
\xhh hexadecimal number -> '\xb' means vertical tab in ASCII
x followed by number is the syntax for hexadecimal number in Character/String Constant
\n newline
\r carriage return -> basically enter key
\t horizontal tab